+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
+Thu Jul 12 18:29:40 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkradiomenuitem.[ch] (gtk_radio_menu_item_group):
+ Rename to gtk_radio_menu_item_get_group(), add deprecated
+ alias. (#57044)
+
+ * gtk/gtkfilesel.c: Indentation fix.
+
Thu Jul 12 17:33:00 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkbbox.h gtk/gtkcompat.h: Patch from Mathias
Retrieves how much space a button box is placing between each child button.\r
</para>
+@b:
@Returns: the current spacing applied to the buttons in @widget.
<!-- # Unused Parameters # -->
@widget: a #GtkButtonBox.
Sets the amount of spacing between buttons in a given button box.\r
</para>
+@b:
+@s:
<!-- # Unused Parameters # -->
@widget: a #GtkButtonBox.
@spacing: the number of pixels of spacing.
Adds a new #GtkMenuItem to the end of the menu's item list.
</para>
+@m:
+@c:
<!-- # Unused Parameters # -->
@menu: a #GtkMenu.
@child: The #GtkMenuItem to add.
Adds a new #GtkMenuItem to the beginning of the menu's item list.
</para>
+@m:
+@c:
<!-- # Unused Parameters # -->
@menu: a #GtkMenu.
@child: The #GtkMenuItem to add.
@Returns: a new #GtkRadioMenuItem
-<!-- ##### FUNCTION gtk_radio_menu_item_group ##### -->
+<!-- ##### MACRO gtk_radio_menu_item_group ##### -->
<para>
Returns the group to which the radio menu item belongs, as a #GList of
#GtkRadioMenuItem. The list belongs to GTK+ and should not be freed.
</para>
-@radio_menu_item: the radio menu item
@Returns: its group
+<!-- # Unused Parameters # -->
+@radio_menu_item: the radio menu item
<!-- ##### FUNCTION gtk_radio_menu_item_set_group ##### -->
#ifdef G_WITH_CYGWIN
/* Check to see if the selection was a drive selector */
- if (isalpha (filename[0]) && (filename[1] == ':')) {
- /* It is... map it to a CYGWIN32 drive */
- gchar *temp_filename = g_strdup_printf ("//%c/", tolower (filename[0]));
- g_free(filename);
- filename = temp_filename;
- }
+ if (isalpha (filename[0]) && (filename[1] == ':'))
+ {
+ /* It is... map it to a CYGWIN32 drive */
+ gchar *temp_filename = g_strdup_printf ("//%c/", tolower (filename[0]));
+ g_free(filename);
+ filename = temp_filename;
+ }
#endif /* G_WITH_CYGWIN */
if (filename)
const gchar *label);
GtkWidget* gtk_radio_menu_item_new_with_mnemonic (GSList *group,
const gchar *label);
-GSList* gtk_radio_menu_item_group (GtkRadioMenuItem *radio_menu_item);
+GSList* gtk_radio_menu_item_get_group (GtkRadioMenuItem *radio_menu_item);
void gtk_radio_menu_item_set_group (GtkRadioMenuItem *radio_menu_item,
GSList *group);
-
+#ifndef G_DISABLE_DEPRECATED
+#define gtk_radio_menu_item_group gtk_radio_menu_item_get_group
+#endif
#ifdef __cplusplus
}